home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000114-20000217 / 000105_news@columbia.edu _Thu Jan 20 20:26:36 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id UAA10027
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 20 Jan 2000 20:26:36 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id UAA18567
  7.     for kermit.misc@watsun.cc.columbia.edu; Thu, 20 Jan 2000 20:22:59 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: C-Kermit 7 and character set translation
  11. Date: 21 Jan 2000 01:22:59 GMT
  12. Organization: Columbia University
  13. Message-ID: <868cdj$i45$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <8689u0$vdo$1@nnrp1.deja.com>,  <m.arriaga@ip.pt> wrote:
  17. : Hello, everyone.
  18. : I am using C-Kermit 7.0 on  a Linux computer and MS-Kermit 3.16b7 on a
  19. : PC running DOS; the two machines are connected via a nullmodem cable.
  20. : I need to transfer rather large text files between the two, and these
  21. : files contain text in Portuguese (I use ISO-8859-1 on the linux box and
  22. : the correspondent codepage in the PC); I have read that Kermit is
  23. : capable of translating from one character set to the other one, but how
  24. : can I do this? Currently my (plain text) files loose all the accented
  25. : characters... but the rest is fine, so I guess the connection itself is
  26. : set up correctly.
  27. Tell PC Kermit to:
  28.  
  29.   set file character-set cp437 (or whatever code page you are using)
  30.   set transfer character-set latin1
  31.  
  32. Be careful -- there are at least 4 different code pages on the PC that
  33. can be used for Portuguese.  You have to tell Kermit which one is used.
  34.  
  35. Tell C-Kermit to:
  36.  
  37.   set file character-set latin1
  38.   set transfer character-set latin1
  39.  
  40. Then transfer the file in text mode.
  41.  
  42. - Frank